home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d19 / lanhelp.arc / LANHELP.TXT next >
Text File  |  1989-10-12  |  11KB  |  259 lines

  1. The following information is a base level list of instructions for
  2. setting up PCBoard on a LANtastic network:
  3.  
  4. There are MANY different CORRECT AND WORKABLE methods of setting up a
  5. LANtastic network to work with PCBoard.  So many in fact that it can be
  6. very confusing in trying to help a user set up a LANtastic network with
  7. PCBoard.  For simplicity's sake the instructions below will be for
  8. setting up a network where one machine is a server and two other
  9. machines are simply workstations on the network.
  10.  
  11. Another choice for simplicity's sake is that all nodes will use the same
  12. CNAMES file.  This means that all DOORS, all BULLETINS, all DIR FILES,
  13. etc will all be homogenous (i.e.  they will not be different from one
  14. node to another).  All uploads will go to the server and all available
  15. downloads will come from the server.
  16.  
  17. This configuration will NOT be the best performing configuration ..  but
  18. it WILL be the easiest to understand.  After you get it up and running
  19. you will probably feel more confident about setting up variations with
  20. multiple servers or download files that are local to each workstation.
  21.  
  22. First, let's get straight what we are talking about.  I'm going to refer
  23. to the server as NODE1.  This machine is the one that stores the USERS
  24. file, the MSGS files and their respective index files and all uploads
  25. and downloadable files.
  26.  
  27. The other machines are referred to as NODE2 and NODE3.  Let's begin...
  28.  
  29. NODE1
  30. -----
  31.  1) This is the most important step so do this before you do anything
  32.     else on your system!  Set up PCBoard on NODE1 and get it working
  33.     without problems before continuing.
  34.  
  35.     You should go to the "Options #1" screen in PCBSetup and answer YES
  36.     to the question "Running under a network" and answer "1" to the
  37.     question "Node number if on a network".  Your network timeout should
  38.     be set to at least 20 and the chat delay should be at least 5 if not
  39.     higher.
  40.  
  41.  2) Now install your LANtastic network card and software per Artisoft's
  42.     installation instructions.
  43.  
  44.  3) These are sample CONFIG.SYS and AUTOEXEC.BAT files so far:
  45.  
  46.     CONFIG.SYS
  47.     ----------
  48.     device=ansi.sys
  49.     files=100
  50.     buffers=16
  51.     lastdrive=z
  52.  
  53.     AUTOEXEC.BAT
  54.     ------------
  55.     cd \lantasti
  56.     lanbios irq=5 address=6 sessions=20 ncbs=20 timeout=40 verbose
  57.     redir N1
  58.     server
  59.     share
  60.  
  61.  4) Run NET_MGR which is a program for configuring your software and
  62.     for determining which resources from your server will be available
  63.     to other machines on the network.
  64.  
  65.  5) Go to the "Network Access Information" selection and press enter.
  66.     This brings you to a screen that shows a list of NETWORK NAMES and
  67.     the DEVICES on the server which they represent.
  68.  
  69.  6) Press the INSERT key to add a new NAME/DEVICE to the list.  Net_Mgr
  70.     then asks you for a name.  Type in CROOT and press enter.  CROOT
  71.     will now show up on the list with no device listed to the right of
  72.     it on the screen.
  73.  
  74.  7) Now position the selection bar on "CROOT" and press enter.  Next
  75.     position the selection bar on "Link Path" and press enter.  Net_Mgr
  76.     then asks you for the name of the device or path which "CROOT" is to
  77.     represent.  Type "C:" and press enter.  Press ESC once and you are
  78.     now back to the menu you saw in step 5 except that CROOT now has a
  79.     "C:" to the right of it on the menu.  Basically what we've done is
  80.     told the networking software that we will refer to drive C: by the
  81.     name of CROOT from the other workstations.
  82.  
  83.     Repeat steps 6 and 7 for each DRIVE on your server that you want to
  84.     share over the network.  For example, if we have drives D: and E: on
  85.     the server and we want to share them on the network then we would
  86.     add the names DROOT and EROOT to the menu in step #6.  Then in step
  87.     #7 we would attach "D:" to DROOT and "E:" to "EROOT".  Our menu at
  88.     this point could look something like this:
  89.  
  90.             ╔═══════════════════════════════════════╗
  91.             ║Directories/devices => Links           ║
  92.             ╠═══════════════════════════════════════╣
  93.             ║.            => C:\LANTASTI.NET        ║
  94.             ║CROOT        => C:                     ║
  95.             ║DROOT        => D:                     ║
  96.             ║EROOT        => E:                     ║
  97.             ╚═══════════════════════════════════════╝
  98.  
  99.  8) Press ESC to exit Net_Mgr and save the above setup.
  100.  
  101.  9) The workstations on the network are going to refer to NODE1's drive
  102.     C: by a different letter than drive C:.  This will cause some
  103.     confusion if NODE1 calls it C: but NODE2 calls the same drive by
  104.     the letter H: or some other letter.  To resolve some of this
  105.     confusion we are going to use the DOS command SUBST to create a few
  106.     aliases for the server's drives.  Modify the AUTOEXEC.BAT file we
  107.     created in step #3 above to look like this:
  108.  
  109.     AUTOEXEC.BAT
  110.     ------------
  111.     cd \lantasti
  112.     lanbios irq=5 address=6 sessions=20 ncbs=20 timeout=40 verbose
  113.     redir N1
  114.     server
  115.     share
  116.     subst h: c:\            /
  117.     subst i: d:\           <-- These 3 lines are the new ones
  118.     subst j: e:\            \
  119.  
  120.     With the above modifications the next time you reboot you will now
  121.     find that you have a drive H:, a drive I: and a drive J: on your
  122.     system.  You don't really have 3 new drives .. as I said, these are
  123.     simply aliases.  For example if you change to drive H: and type DIR
  124.     to view the directory of drive H: you'll find the same list of files
  125.     that are available on drive C:.  Drive I: will show the files found
  126.     on drive D: and drive J: the files on drive E:.
  127.  
  128. 10) Now let's go into PCBSetup and make some modifications...  In the
  129.     "File Locations 1" and "File Locations 2" screens locate every
  130.     reference to drive C: and change it to drive H:.  Any references to
  131.     drive D: should be changed to drive I: and any references to drive
  132.     E: should be changed to drive J:.
  133.  
  134.     Example:   Name/Loc of Users File:  C:\PCB\MAIN\USERS
  135.                          -- becomes --  H:\PCB\MAIN\USERS
  136.  
  137.     Before you leave the "File Locations 1" screen place your cursor in
  138.     the FSEC field and press F2 to edit that field.  You will note that
  139.     the first column on the left of the screen is for DRIVES and PATHS.
  140.     If you have specified any drive letters in this field they too must
  141.     be changed from C:/D:/E: to H:/I:/J:.  Press ESC to save your new
  142.     FSEC file.
  143.  
  144.     Now do the same thing on the UPSEC file.
  145.  
  146. 11) Now go to the "Main Board Configuration" screen in PCBSetup.  Once
  147.     there you will again need to change all references to drive letters
  148.     from C:/D:/E: to H:/I:/J:.
  149.  
  150.     Before you leave that screen remember to position your cursor in
  151.     each of the following fields:  DOORS.LST, BLT.LST, SCRIPT.LST,
  152.     DIR.LST and DLPATH.LST and press F2 to edit those files .. again
  153.     changing drive letters as you have done above.
  154.  
  155. 12) Now move on to each of the conferences you have and do the same
  156.     thing that you did for step #11.
  157.  
  158. 13) Now press ESC from PCBSetup's main menu and select YES to save your
  159.     new PCBOARD.DAT and CNAMES files out to disk.
  160.  
  161. 14) Finally, add the following lines to your AUTOEXEC.BAT file so that
  162.     it will automatically bring up PCBoard when it is booted:
  163.  
  164.     CD\PCB
  165.     BOARD
  166.  
  167. All of the above has probably seemed pretty tedious and a lot of work by
  168. now .. but believe me, the work will SIMPLIFY your understanding of the
  169. network and get you up to speed much quicker than any other method.
  170. Again, it may not be the fastest configuration - but for first time
  171. users the old KISS (keep it simple, stupid) formula usually works best!
  172.  
  173. Now let's move onto NODE2 which is our first workstation.  This is where
  174. the fun finally begins!!!
  175.  
  176.  
  177. NODE2
  178. -----
  179. 15) Install your LANtastic cards, software and cables as specified in
  180.     the LANtastic manual.
  181.  
  182. 16) Set up your CONFIG.SYS and AUTOEXEC.BAT files similar to those
  183.     shown below and then reboot.
  184.  
  185.     CONFIG.SYS
  186.     ----------
  187.     device=ansi.sys
  188.     files=20
  189.     buffers=16
  190.     lastdrive=z
  191.  
  192.     AUTOEXEC.BAT
  193.     ------------
  194.     cd \lantasti
  195.     lanbios irq=5 address=6 sessions=20 ncbs=20 timeout=40 verbose
  196.     redir N2
  197.     share
  198.     net login \\N1 NODE2
  199.     net clock \\N1
  200.     net use h: \\N1\CROOT
  201.     net use i: \\N1\DROOT
  202.     net use j: \\N1\EROOT
  203.  
  204.     The above will log this machine into NODE1.  It then sets its clock
  205.     according to the clock in NODE1 so that both machines are
  206.     synchronized.  And finally it sets itself up with drives H:, I: and
  207.     J: all of which will actually refer to drives found on NODE1.
  208.  
  209. 17) After you have rebooted you should be able to changed to drive H:
  210.     and type DIR and you will see a list of files found on NODE1's drive
  211.     C:.  Changing to drive I: will find files found on NODE1's drive D:
  212.     and on drive J: you'll find the files on NODE1's drive E:.
  213.  
  214.     Before you get confused ... REMEMBER THIS:  whether you are on NODE1
  215.     or NODE2 you will get the SAME list of files if you switch to drive
  216.     H:.  The same is true for drives I: and J:.  The best thing to do is
  217.     forget that drives C:, D: and E: exist on NODE1 .. instead always
  218.     refer to them as H:, I: and J: from now on!
  219.  
  220. 18) Now on drive C: of NODE2 create a directory called \PCB.  In that
  221.     directory we will place all of the files necessary to run PCBoard
  222.     from that machine.  Type the following commands:
  223.  
  224.     C:
  225.     MD\PCB
  226.     CD\PCB
  227.     COPY H:\PCB\*.*
  228.  
  229. 19) Now go into PCBSetup in the "Options 1" screen and change the NODE
  230.     NUMBER from 1 to 2.  Then save your new setup.
  231.  
  232. 20) Finally, add the following lines to your AUTOEXEC.BAT file so that
  233.     it will automatically bring up PCBoard when it is booted:
  234.  
  235.     CD\PCB
  236.     BOARD
  237.  
  238.  
  239. Reboot NODE1 first and once it is running PCBoard reboot NODE2 and you
  240. should now have two nodes online.  On to NODE3....  (are we having fun
  241. yet???)
  242.  
  243.  
  244. NODE3
  245. -----
  246. 21) Repeat steps 15 thru 20 on this machine -- except in step #19 you
  247.     should change the NODE NUMBER to 3.  Now wasn't that easy?
  248.  
  249.  
  250. Now with NODE1 and NODE2 up and running boot NODE3 and you should now
  251. have three nodes up and running.  Congratulations!
  252.  
  253. ------------------------------------------------------------------------
  254.  
  255. NOTE:  all of the above was put together fairly quickly and is not
  256. guaranteed to be error free.  If you have any problems with the
  257. instructions please leave your questions/modifications as a message to
  258. DAVID TERRY in the LANtastic conference on the Salt Air BBS.
  259.